home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Komputer for Alle 1999 #5
/
1999 CD 5 (black).iso
/
Delphi3
/
install
/
data.z
/
VIEWWIN.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1997-08-05
|
345 b
|
27 lines
unit ViewWin;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
Forms, Dialogs, ExtCtrls;
type
TViewForm = class(TForm)
Image1: TImage;
private
{ Private declarations }
public
{ Public declarations }
end;
var
ViewForm: TViewForm;
implementation
{$R *.DFM}
end.